Relay e2e tests #734
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Relay e2e Tests | |
on: | |
schedule: | |
- cron: '0 8 * * *' | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: 'Environment to run the e2e against' | |
required: true | |
default: 'stage' | |
type: choice | |
options: | |
- stage | |
- prod | |
- dev | |
jobs: | |
relaye2e: | |
name: 'Relay Application e2e Tests' | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4.0.2 | |
with: | |
node-version-file: 'frontend/package.json' | |
cache: 'npm' | |
- name: Install Node dependencies | |
run: npm install | |
- name: Install Playwright Browsers | |
run: | | |
npm install -D @playwright/test --with-deps | |
npx playwright install | |
- name: Run Playwright tests | |
run: | | |
commandenv=":${{ inputs.environment != null && inputs.environment || 'stage' }}" | |
npm run test$commandenv | |
env: | |
E2E_TEST_ENV: ${{ inputs.environment != null && inputs.environment || 'stage' }} | |
E2E_TEST_ACCOUNT_FREE: ${{ secrets.E2E_TEST_ACCOUNT_FREE }} | |
E2E_TEST_ACCOUNT_PASSWORD: ${{ secrets.E2E_TEST_ACCOUNT_PASSWORD }} | |
E2E_TEST_ACCOUNT_PREMIUM: ${{ secrets.E2E_TEST_ACCOUNT_PREMIUM }} | |
E2E_TEST_BASE_URL: ${{ secrets.E2E_TEST_BASE_URL }} | |
- name: Upload html report as artifact to troubleshoot failures. | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 5 |